* configure.in (machine): Fix the versions in hpux version number test.
authorJim Blandy <jimb@redhat.com>
Tue, 8 Jun 1993 07:17:32 +0000 (07:17 +0000)
committerJim Blandy <jimb@redhat.com>
Tue, 8 Jun 1993 07:17:32 +0000 (07:17 +0000)
Do not guess based on cpu type.  Do check for explicit system version.

configure1.in

index e0999e5523ed71625846742355e186bf44ac725c..1d494e24dc6f7acc38dec15add854c7542757fd7 100755 (executable)
@@ -558,17 +558,22 @@ case "${configuration}" in
   ;;
 
   ## HP 9000 series 700 and 800, running HP/UX
-  hppa1.0-hp-hpux* )
-    machine=hp9000s800 opsys=hpux
+  hppa*-hp-hpux7* )
+    machine=hp9000s800 opsys=hpux ;;
   ;;
-  hppa1.1-hp-hpux* )
-    machine=hp9000s800 opsys=hpux8
+  hppa*-hp-hpux8* )
+    machine=hp9000s800 opsys=hpux8 ;;
   ;;
+  hppa*-hp-hpux9* )
+    machine=hp9000s800 opsys=hpux9 ;;
+  ;;
+
+  ## HP 9000 series 700 and 800, running HP/UX
   hppa*-hp-hpux* )
     ## Cross-compilation?  Nah!
     case "`uname -r`" in
-      *.08.* ) machine=hp9000s800 opsys=hpux ;;
-      *.09.* ) machine=hp9000s800 opsys=hpux8 ;;
+      *.08.* ) machine=hp9000s800 opsys=hpux8 ;;
+      *.09.* ) machine=hp9000s800 opsys=hpux9 ;;
       *) machine=hp9000s800 opsys=hpux ;;
     esac
   ;;